home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / diskutil / vol109.lzh / VOL.MAN < prev    next >
Text File  |  1994-08-27  |  4KB  |  83 lines

  1.  VOL version 1.09-88/12
  2.  
  3.  ***************************************************************
  4.  *                                                             *
  5.  * read/write volume label                                     *
  6.  * parameters: drive[/] volumename (or ? to read, - to delete, *                                                            *
  7.  *             + to reset GEMDOS)                              *                                                            *
  8.  *             default for the second parameter is ?           *                                                            *
  9.  *             the optional / after the drive letter causes    *                                                            *
  10.  *             immediate return after display, otherwise the   *                                                            *
  11.  *             program waits for a keystroke                   *                                                            *
  12.  * NOTE: after volume label deletion, GEMDOS buffers are dis-  *
  13.  *       carded and all open files on drive are lost!          *
  14.  *                                                             *
  15.  ***************************************************************
  16.  
  17. The program VOL serves (at least for me) three purposes:
  18. 1. I can give disks a label, if I forgot so during formatting,
  19.    or even change it (e.g. "VOL A TEX.36")
  20. 2. I can remove control-blocks created by the "40-folder bug" of
  21.    TOS for any logical drive (e.g. "VOL C +")
  22. 3. I can look at disk characteristics (sectors per track etc.)
  23.    of disks, including an info if the boot sector is executable
  24.    (boot sector virus?) typing just "VOL A".
  25.  
  26. A report of VOL can be redirected to a file. I obtained the
  27. following sample output by "VOL A >LIST":
  28.  
  29.  volume A: T4.KA
  30.  serial#: 3288627, media-id: f9 (249), sys-id:  IBM  3.2
  31.  2 sided / 80 trk (9 spt), data region 713 * 1024 bytes
  32.  
  33. a "VOL C/ >LIST" gives information on my hard disk:
  34.  
  35.  volume C: (no label)
  36.  serial#: 0, media-id: f8 (248), sys-id:  
  37.  6 sided / 209 trk (26 spt), data region 16298 * 1024 bytes
  38.  
  39. (means: 6 heads, 209 tracks, 26 sectors per track, 16298 clusters,
  40. and a cluster size of 1024 bytes)
  41.  
  42. Finally, I just changed the label of my TOS disk by
  43. "VOL A RAMTOS1.0" and saw: 
  44.  
  45.  volume A: TOS, label deleted
  46.  new label RAMTOS1.0
  47.  boot sector executable
  48.  serial#: 1, media-id: f8 (248), sys-id: Loader
  49.  2 sided / 80 trk (9 spt), data region 711 * 1024 bytes
  50.  
  51. So much for an introduction. enjoy the program! 
  52. (but tell your lawyer: YOU use it at YOUR risk alone, I take no
  53. liability whatsoever)
  54.                       Roland Waldi, BD05 @ DKAUNI2.BITNET
  55.  
  56.  
  57. ----------------------------------------------------------------------
  58. SYNTAX:
  59.  
  60. VOL     [drive[/]  [-|+|name]]
  61.  
  62. display/clear/create a Volume Label and gives short info about the
  63. disk/partition.
  64.  
  65. drive     a for A:, b for B:, c for C: etc. (default a)
  66.  
  67.           a / after the drive letter makes VOL terminate without 
  68.           waiting for a keypress!
  69.  
  70. name      new Volume Label (the old one will be delete, if it exists)
  71.           Note: All GEM buffers for the drive are reset! Don't use
  72.           VOL when files are open, and re-establish the current
  73.           subdirectory after the call, if you rely on that.
  74.  
  75. -         delete old Volume Label; the volume is unlabelled afterwards.
  76.           Note: All GEM buffers for the drive are reset!
  77.  
  78. +         no change in Volume Label, but reset GEMDOS buffers
  79.           (fake media change for harddisk, workaround "40-folder-bug")
  80.  
  81. ?         or no second parameter: just display info.
  82.  
  83.